gsk: Add a debug flag for transforms
authorMatthias Clasen <mclasen@redhat.com>
Wed, 3 Aug 2016 01:53:31 +0000 (21:53 -0400)
committerEmmanuele Bassi <ebassi@gnome.org>
Tue, 18 Oct 2016 10:49:11 +0000 (11:49 +0100)
gsk/gskdebug.c
gsk/gskdebugprivate.h

index c52c0199470694bba5c7d986607de6b6b44e20cc..1e0dc1c0b33e5c37bedcfa2291b8f2497f4f0945 100644 (file)
@@ -7,6 +7,7 @@ static const GDebugKey gsk_debug_keys[] = {
   { "cairo", GSK_DEBUG_CAIRO },
   { "opengl", GSK_DEBUG_OPENGL },
   { "shaders", GSK_DEBUG_SHADERS },
+  { "transforms", GSK_DEBUG_TRANSFORMS }
 };
 #endif
 
index a62ce2d8a27d164f98cd2ea4fa41806e4c694a09..f624dd176e8531b2bc8fe1e9ed8f7f03c9062a74 100644 (file)
@@ -10,7 +10,8 @@ typedef enum {
   GSK_DEBUG_RENDERER    = 1 << 1,
   GSK_DEBUG_CAIRO       = 1 << 2,
   GSK_DEBUG_OPENGL      = 1 << 3,
-  GSK_DEBUG_SHADERS     = 1 << 4
+  GSK_DEBUG_SHADERS     = 1 << 4,
+  GSK_DEBUG_TRANSFORMS  = 1 << 5
 } GskDebugFlags;
 
 typedef enum {